math/big.nat.bytes (method)
7 uses
math/big (current package)
floatmarsh.go#L55: x.mant[len(x.mant)-n:].bytes(buf[10:]) // cut off unused trailing words
int.go#L528: return buf[x.abs.bytes(buf):]
int.go#L540: x.abs.bytes(buf)
intmarsh.go#L23: i := x.abs.bytes(buf) - 1 // i >= 0
nat.go#L1307: func (z nat) bytes(buf []byte) (i int) {
ratmarsh.go#L25: i := x.b.abs.bytes(buf)
ratmarsh.go#L26: j := x.a.abs.bytes(buf[:i])
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |